Click or drag to resize
TableServer Methods

The TableServer type exposes the following members.

Methods
  Name Description
Public method Static member Code example Automatic_Network_Search
Static Public Function for Automatic Network Search for Slab Connected(Execution time 5 to 10 minutes and it's depend on network speed). this function return type is List of Ip address String.
Examples
Foreach(string s in TableServer.AutomaticNetworkSearch()) {Console.WriteLine(s); };
Public method Static member calcul_Medium_point
public Function to calculate the medium point of list of points. the List of points objects. this function return type is Point Object Type.
Private method Configure_Slabs_Paratmers
Private Function for automatic setting by sending comands for each Slab on the tangible table (IP server, detection Mode... etc). this function return type is void.
Private method Configure_Slabs_Positions
Private Function for initializing Slabs positions on the tangible table. this function return type is void.
Private method Configure_Slabs_XML
private Function for reading Slabs Ip from XML file. this function return type is void .
Public method Dispose
public Function to Liberate All Resources and clean everything. this function return type is void.
Private method Static member Get_Tag_Position
Private Function to get a position of tag from his ID Value. the string value Tag RFID Identificator. this function return type is tag Object Type.
Private method initilize_Class_Members
this function will inisialize all class members (buffers, objects, Network listeners ... etc). this function return type is void
Protected method On_Tags_Leaving
Virtual Function for Tags leaving (User must write his own function). the tag object that rise the event.the event rised by the sender. this function return type is void.
Protected method On_Tags_Moving
Virtual Function for Tags Moving (User must write his own function). the tag object that rise the event. the event rised by the sender. this function return type is void.
Private method Run
private Function for performing the listening on Network Broadcast tangible frames. this function return type is void .
Public method Code example Send_Command
Public Function to send a simple Tangible Command to a Single Slab. the string value of the Slab IP address.the string value of the Tangible Command. this function return type is Response Object Type.
Examples
TableServer tab= new TableServer(); tab.SendCommand("192.186.1.101","mode:1");
Public method Code example Start
Public Function for Start Listening on Network for Broadcast tangible frames. this function return type is void.
Examples
TableServer tab=new tableServer(); tab.start();
Public method Code example Stop
Public Function for Stop Listening on Network for Broadcast tangible frames. this function return type is void.
Examples
TableServer tab=new tableServer(); tab.start(); tab.Stop()
Top
See Also